2b3f7eb255504a5983596cf1d97d7341af96947a,java/execution/openapi/src/com/intellij/execution/configurations/JavaParameters.java,JavaParameters,configureByProject,#Project#number#Sdk#,101

Before Change


    }

    configureJdkAccordingToJreSelected(getJdk());
    configureEnumerator(OrderEnumerator.orderEntries(project).runtimeOnly().withoutSdk(), classPathType).collectPaths(getClassPath());
  }

  private static OrderEnumerator configureEnumerator(OrderEnumerator enumerator, int classPathType) {

After Change


      return;
    }
    final PairFunction<OrderEntry, OrderRootType, VirtualFile[]> substitutor = computeSubstitutor(classPathType, jdk);
    configureEnumerator(OrderEnumerator.orderEntries(project).runtimeOnly().substituteFiles(substitutor), classPathType).classes().collectPaths(getClassPath());
  }

  private static OrderEnumerator configureEnumerator(OrderEnumerator enumerator, int classPathType) {